Get the number of post on twitter liked by a given accountΒΆ

Get the number of post on twitter liked by a given account.
from bs4 import BeautifulSoup
import requests

handle = input('Input your account name on Twitter: ')
temp = requests.get('https://twitter.com/' + handle)
bs = BeautifulSoup(temp.text,'lxml')

try:

    favorite_box = bs.find('li',{'class':'ProfileNav-item ProfileNav-item--favorites'})

    favorite = favorite_box.find('a').find('span',{'class':'ProfileNav-value'})

    print("Number of post {}  liked are {}: ".format(handle, favorite.get('data-count')))

except:
    print('Account name not found...')

Output:

Input your account name on Twitter:  XXXXXXXXXXX
Number of post XXXXXXXXXXX liked are 119